home *** CD-ROM | disk | FTP | other *** search
- /*
- * Sample menu planner script:
- */
- meal!u: {$meat
- $starch
- $vegetable
- $salad
- }
- |{$meat
- $starch
- $vegetable
- $salad
- }
- |{$meat
- $starch
- $salad
- }
- |{$casserole
- $salad
- }
- |{$stirfry
- rice
- }
- |{pizza}
- |{take out chinese}
- ;
-
- meat!u: {pot roast}
- | {meat loaf}
- | {fried chicken}
- | {pork chops}
- | {hamburgers}
- | {beef bourgigneon}
- | {baked fish}
- | {baked chicken}
- | {lamb chops}
- | {shrimp}
- | {fried clams}
- ;
-
- starch!u: {baked potatoes}
- | {boiled potatoes}
- | {mashed potatoes}
- | {boiled rice}
- | {fried rice}
- | {$pasta}
- | {fresh baked bread}
- ;
-
- vegetable!u: {corn}
- | {peas}
- | {green beans}
- | {broccoli}
- | {cauliflower}
- | {carrots}
- | {oriental vegetables}
- | {boiled cabbage}
- | {zucchini}
- ;
-
- salad!u: {green salad}
- | {fruit salad}
- | {waldorf salad}
- | {jello salad}
- | {cucumber salad}
- | {three bean salad}
- ;
-
- stirfry!u: {stir fried chicken}
- | {stir fried beef}
- | {stir fried shrimp}
- | {stir fried pork}
- | {stir fried scallops}
- ;
-
- casserole!u: {macaroni and cheese}
- | {tuna casserole}
- ;
-
- pasta!u: {spaghetti}
- | {egg noodles}
- | {bow tie noodles}
- | {macaroni and cheese}
- | {linguine}
- | {fettucine}
- ;
-